BOOL CDrawView::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) 
{
	// TODO: Add your message handler code here and/or call default
	switch(m_nDrawType)
	{
	case 0:
	case 1:
	case 2:
		::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_CROSS));
		break;
	case 3:
		::SetCursor(AfxGetApp()->LoadCursor(ID_CURSOR_FILL));
		break;
	default:
		::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
		break;
	}

	return CView::OnSetCursor(pWnd, nHitTest, message);
}
